home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / listings / v_09_05 / 9n05043a < prev    next >
Text File  |  1990-11-10  |  224b  |  14 lines

  1.  
  2.     Display        *display;
  3.     Window        window;
  4.     GC            gc;
  5.     int            x, y;        /* upper left corner */
  6.     unsigned int    width, height;    /* size of rectangle */
  7.  
  8.     XFillRectangle( display,
  9.         window,
  10.         gc,
  11.         x, y,
  12.         width, height );
  13.  
  14.